home *** CD-ROM | disk | FTP | other *** search
/ InfoMagic Internet Tools 1993 July / Internet Tools.iso / RockRidge / info-service / www / src / WWW / Daemon / Implementation / HTDaemon.h < prev    next >
Encoding:
C/C++ Source or Header  |  1993-03-04  |  398 b   |  23 lines

  1. /*        Calls back to HTDaemon program
  2. **        ------------------------------
  3. */
  4. #ifndef HTDAEMON_H
  5. #define HTDAEMON_H
  6.  
  7. #include "HTFormat.h"
  8.  
  9. /*    These routines are used to send back appropriate
  10. **    protocol header fields preceding a message.
  11. */
  12.  
  13. extern void HTSendError PARAMS((
  14.     int                 soc, 
  15.     int            number,
  16.     CONST char *            msg));
  17.     
  18. extern void HTSendHeader PARAMS((
  19.     int         soc, 
  20.     HTFormat    rep));
  21.  
  22. #endif
  23.